/* Import Britannic Bold Font (using similar web-safe alternative) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* Color Variables - Pastel Complementary Colors */
:root {
    --primary-color: #ffebaf; 
    --secondary-color: #4c9db0;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
}

/* Make images responsive by default */
img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 50px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#navbar.scrolled {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 35px;
    margin: 0;
    padding: 0;
}

/* Hamburger Menu (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.625rem;
    z-index: 1001;
}

.hamburger span {
    width: 1.5625rem;
    height: 0.1875rem;
    background-color: #333;
    margin: 0.1875rem 0;
    transition: 0.3s;
    border-radius: 0.1875rem;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-0.3125rem, 0.375rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-0.3125rem, -0.375rem);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -120px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    margin: 0;
    margin-top: 8px;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    padding-left: 30px;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 15px;
    margin-left: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    animation: underlinePulse 2s ease;
}

@keyframes underlinePulse {
    0%, 100% {
        width: 100%;
    }
    50% {
        width: 100%;
    }
}

/* Section Styling */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

h1 {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 56px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--text-dark);
    text-align: center;
    padding-top: 380px;
}

.main-title {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.subtitle {
    font-size: 24px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Full-page background dandelion */
.dandelion-background {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

/* SVG scaling & color theme */
.dandelion-svg {
    width: 1000px;
    height: 1000px;
    overflow: visible;
}

/* Stem styling */
.stem {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-linecap: round;
    opacity: 0.1;
    filter: drop-shadow(0 0 3px rgba(120, 220, 255, 0.2));
}

/* Center circle */
.center {
    fill: #ffffff;
    opacity: 0.1;
    filter: drop-shadow(0 0 4px rgba(140, 220, 255, 0.3));
}

/* Lines radiating outward */
.stem-line {
    stroke: #ffffff;
    stroke-width: 2;
    opacity: 0.1;
    transform-origin: center;
}

/* Petal dots */
.petal-dot {
    fill: #ffffff;
    stroke: none;
    filter: drop-shadow(0 0 2px rgba(140, 210, 255, 0.3));
    opacity: 1;
    transform: translate(0, 0) scale(1);
    animation: fly 5s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0s) + 1s);
}

/* Petals flying away */
@keyframes fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    40% {
        transform: translate(
            calc(cos(var(--angle)) * 50px),
            calc(sin(var(--angle)) * -50px)
        ) scale(1.2);
        opacity: 0.9;
    }
    100% {
        transform: translate(
            calc(cos(var(--angle)) * 400px),
            calc(sin(var(--angle)) * -400px)
        ) scale(0.6);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--text-dark);
    border-bottom: 3px solid var(--text-dark);
    transform: rotate(45deg);
    margin: 10px auto;
}

/* About Section */
.about {
    background: transparent;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.graphic-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.square-graphic {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
}

.square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    background: transparent;
}

.services h2 {
    text-align: center;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Service Card Link Wrapper */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-link:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-card {
    background: rgba(255, 245, 250, 0.70);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Objectives Section */
.objectives {
    background: transparent;
}

.objectives h2 {
    text-align: center;
    color: var(--text-dark);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.objective-card {
    background: rgba(255, 245, 250, 0.70);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.objective-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.objective-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.objective-card h3 {
    margin-bottom: 15px;
}

.objective-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Portfolio Section */
.portfolio {
    background: transparent;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.portfolio-item {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.portfolio-graphic {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-graphic {
    transform: scale(1.05);
}

.portfolio-item p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Modal Overlay */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

/* Modal Content Container */
.modal-content {
    position: relative;
    width: 60vw;
    max-width: 1200px;
    max-height: 85vh;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Modal Image */
.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Modal Caption */
.modal-caption {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 20px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--text-dark);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #ff5555;
}

/* Testimonials Section */
.testimonials {
    background: transparent;
    overflow: hidden;
    padding-bottom: 50px;
}

.testimonials-header-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-bg-image {
    width: 100%;
    height: 400px;
    background-image: url('smiley-face-stock-image-popular-trending-adobe-stock-seller.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background-image: url('smiley-face-stock-image-popular-trending-adobe-stock-seller.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 350px 100px 220px 100px;
    border-radius: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 60px;
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
}

/* Carousel Arrows */
.carousel-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 100;
    position: absolute;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.carousel-arrow:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    color: inherit;
}

.testimonials-carousel {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.testimonials-track.no-transition {
    transition: none;
}

.testimonial-box {
    flex-shrink: 0;
    width: 100%;
    max-width: 700px;
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 0 auto;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.client-logo {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.client-logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px;
    font-weight: 600;
    text-align: center;
}

.client-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    background: transparent;
}

.contact-form-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 250, 252, 0.80);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 181, 216, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    background: transparent;
    text-align: center;
}

.contact h2 {
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 60px;
}

.contact-link {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    transform: scale(1.05);
}

.contact-number, .contact-address {
    font-size: 18px;
    margin: 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.social-link {
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-5px);
}

.triangle-graphic {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: -100px;
    left: -100px;
    transform: rotate(30deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(30px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES (TABLET & BELOW)
   ============================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 56px;
    }
    
    h2 {
        font-size: 42px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        gap: 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        display: block;
    }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background: #f8f8f8;
        padding: 10px 0 10px 20px;
        box-shadow: none;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Split content - stack on tablet */
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .square-graphic {
        position: static;
        transform: none;
        margin: 0 auto;
    }
    
    /* Services grid - 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Objectives grid - 2 columns */
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Portfolio grid - 2 columns */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .modal-content {
        width: 80vw;
    }
    
    .arrow-left {
        left: 10px;
    }
    
    .arrow-right {
        right: 10px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Body padding */
    body {
        padding-top: 70px;
    }
    
    /* Navigation */
    #navbar {
        padding: 20px 30px;
    }
    
    #navbar.scrolled {
        padding: 12px 30px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .nav-menu {
        width: 80%;
        max-width: 300px;
        padding: 80px 25px 25px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    /* Section spacing */
    .section {
        padding: 80px 30px;
        min-height: auto;
    }
    
    /* Hero section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .dandelion-background {
        display: none;
    }
    
    /* Services grid - single column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    /* Objectives grid - single column */
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .objective-card {
        padding: 35px 25px;
    }
    
    /* Portfolio grid - single column */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio h2 {
        margin-bottom: 40px;
    }
    
    .portfolio-graphic {
        height: 250px;
    }
    
    /* Modal */
    .modal-content {
        width: 90vw;
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }
    
    .modal-caption {
        font-size: 20px;
    }
    
    /* Testimonials */
    .testimonials-carousel-container {
        padding: 0 50px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .arrow-left {
        left: 5px;
    }
    
    .arrow-right {
        right: 5px;
    }
    
    .testimonials-carousel {
        max-width: 100%;
    }
    
    .testimonial-box {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .form-subtitle {
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .submit-btn {
        padding: 16px 35px;
    }
    
    /* Contact section */
    .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .social-link {
        padding: 12px 30px;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Hide decorative graphics */
    .triangle-graphic {
        display: none;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .section {
        padding: 50px 15px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .service-card,
    .objective-card {
        padding: 30px 20px;
    }
    
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .testimonial-box {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .section {
        min-height: auto;
        padding: 50px 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .objective-card:hover,
    .portfolio-item:hover .portfolio-graphic {
        transform: none;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .objective-card:active {
        transform: scale(0.98);
    }
}